home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 April / Gamestar_61_2004-04_dvdb.iso / DVDStar / Akce / Half-Life / IOS / ios3.exe / {app} / settings.scr < prev    next >
Encoding:
Text File  |  2003-11-09  |  1.4 KB  |  73 lines

  1. // NOTE:  THIS FILE IS AUTOMATICALLY REGENERATED, 
  2. //DO NOT EDIT THIS HEADER, YOUR COMMENTS WILL BE LOST IF YOU DO
  3. // Multiplayer options script
  4. //
  5. // Format:
  6. //  Version [float]
  7. //  Options description followed by 
  8. //  Options defaults
  9. //
  10. // Option description syntax:
  11. //
  12. //  "cvar" { "Prompt" { type [ type info ] } { default } }
  13. //
  14. //  type = 
  15. //   BOOL   (a yes/no toggle)
  16. //   STRING
  17. //   NUMBER
  18. //   LIST
  19. //
  20. // type info:
  21. // BOOL                 no type info
  22. // NUMBER       min max range, use -1 -1 for no limits
  23. // STRING       no type info
  24. // LIST          delimited list of options value pairs
  25. //
  26. //
  27. // default depends on type
  28. // BOOL is "0" or "1"
  29. // NUMBER is "value"
  30. // STRING is "value"
  31. // LIST is "index", where index "0" is the first element of the list
  32.  
  33.  
  34. // Half-Life Server Configuration Layout Script (stores last settings chosen, too)
  35. // File generated:  Sun Nov 09 01:23:04 AM
  36. //
  37. //
  38. // Cvar    -    Setting
  39.  
  40. VERSION 1.0
  41.  
  42. DESCRIPTION SERVER_OPTIONS
  43. {
  44.     "mp_teamlist"
  45.     {
  46.         "Football team names, must be two teams"
  47.         { STRING }
  48.         { "BRAZIL;GERMANY" }
  49.     }
  50.  
  51.     "mp_roundlimit"
  52.     {
  53.         "Goal Limit"
  54.         { NUMBER 0.000000 -1.000000 }
  55.         { "20.000000" }
  56.     }
  57.  
  58.     "mp_timelimit"
  59.     {
  60.         "Match Time (Min.)"
  61.         { NUMBER 0.000000 -1.000000 }
  62.         { "30.000000" }
  63.     }
  64.  
  65.     "mp_autobalance"
  66.     {
  67.         "Autobalance Teams"
  68.         { BOOL }
  69.         { "1" }
  70.     }
  71.  
  72. }
  73.